home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / main.swf / scripts / fl / controls / listClasses / ListData.as < prev   
Text File  |  2020-08-04  |  1KB  |  64 lines

  1. package fl.controls.listClasses
  2. {
  3.    import fl.core.UIComponent;
  4.    
  5.    public class ListData
  6.    {
  7.        
  8.       
  9.       protected var _index:uint;
  10.       
  11.       protected var _owner:UIComponent;
  12.       
  13.       protected var _label:String;
  14.       
  15.       protected var _icon:Object = null;
  16.       
  17.       protected var _row:uint;
  18.       
  19.       protected var _column:uint;
  20.       
  21.       public function ListData(param1:String, param2:Object, param3:UIComponent, param4:uint, param5:uint, param6:uint = 0)
  22.       {
  23.          _icon = null;
  24.          super();
  25.          _label = param1;
  26.          _icon = param2;
  27.          _owner = param3;
  28.          _index = param4;
  29.          _row = param5;
  30.          _column = param6;
  31.       }
  32.       
  33.       public function get owner() : UIComponent
  34.       {
  35.          return _owner;
  36.       }
  37.       
  38.       public function get label() : String
  39.       {
  40.          return _label;
  41.       }
  42.       
  43.       public function get row() : uint
  44.       {
  45.          return _row;
  46.       }
  47.       
  48.       public function get index() : uint
  49.       {
  50.          return _index;
  51.       }
  52.       
  53.       public function get icon() : Object
  54.       {
  55.          return _icon;
  56.       }
  57.       
  58.       public function get column() : uint
  59.       {
  60.          return _column;
  61.       }
  62.    }
  63. }
  64.